home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AppsToGo / DTS.Draw / •Changes (since 4.0b1) next >
Encoding:
Text File  |  1994-09-22  |  1.3 KB  |  38 lines  |  [TEXT/MPS ]

  1. 07/21/93 (ERS)
  2.  
  3. __________
  4.  
  5. File TearOff.MDEF.c:
  6.  
  7. Read the documentation at the beginning of the source file.  It describes how the MDEF
  8. is used now.  Many changes were made to make it more flexible and complete.
  9.  
  10. The two big changes were balloon help support and multiple column support.
  11.  
  12. __________
  13.  
  14. File TRRectObj.c:
  15.  
  16. The message GETBBOXMESSAGE actually does work differently than TRectObj.c.
  17. (It used to just call TRectObj to do the work, as with many other messages.)
  18.  
  19. The difference is that the BBOX needs to also encompass the 5th grabber, which is
  20. the roundness grabber.  The roundness grabber can actually be outside the round-rect.
  21. To get the roundness grabber outside, create a reasonably big round-rect, round it as
  22. much as possible, and then shrink the round-rect.
  23.  
  24. DTS.Draw tries to keep the roundness setting as the round-rect is edited.  The roundness
  25. setting shouldn't always be clipped to fit the new round-rect size, as you may want to
  26. grow it out again.
  27.  
  28. Well, that's what the problem was.  Not a biggie, except that since the roundness grabber
  29. easn't enclosed by the BBOX, it didn't always get erased.  This lead to goobers being
  30. left behind while the round-rect was being resized.
  31.  
  32. The fix:
  33.  
  34.     TRRectObj.c now has its own code for handling the GETBBOXMESSAGE.
  35.  
  36. __________
  37.  
  38.